home *** CD-ROM | disk | FTP | other *** search
- /*
- * Implements a cell that displays its data in multiple columns.
- *
- * For legal stuff see the file COPYRIGHT
- */
- #import <appkit/appkit.h>
- #import "ColCellData.h" /* for the protocol definition */
-
- @interface ColCell : NXBrowserCell
- {
- id <ColCellData> data;
- }
-
- - drawInside:(const NXRect *)cellFrame inView:controlView;
- - setFont:fontObj;
- - copyFromZone:(NXZone *)zone;
- - (void)setCellData:(id <ColCellData>)obj;
- - (id <ColCellData>)cellData;
-
- @end
-